home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / wsc4c10.zip / SELFTEST._B_ < prev    next >
Text File  |  1996-09-08  |  1KB  |  42 lines

  1. #
  2. # Borland makefile for SELFTEST
  3. #
  4. # To use: "maker -fselftest._B_"
  5. # Note: Use "maker", not "make"
  6. #
  7. # Note: Replace the reference "D:\COMPILER\BC45\INCLUDE" below
  8. #       with your compilers INCLUDE path.
  9. #
  10.  
  11. C_FLAGS = -c -2
  12. L_FLAGS = -c -n -Tw
  13.  
  14. selftest.exe: selftest.res selftest.obj selftest.def  \
  15.             about.obj menu.obj line.obj \
  16.             paint.obj wscerror.obj runtest.obj
  17.     tlink -c -n -Tw  c0ws @selftest.rsp ,selftest,selftest, mathws cws import wsc,selftest,selftest
  18.     rlink selftest.res selftest.exe
  19.  
  20. selftest.res: selftest.rc
  21.     brcc -iD:\COMPILER\BC45\INCLUDE selftest.rc
  22.  
  23. about.obj: about.c about.h
  24.    bcc $(C_FLAGS)  about.c
  25.  
  26. selftest.obj: selftest.c selftest.h wsc.h
  27.    bcc $(C_FLAGS)  selftest.c
  28.  
  29. runtest.obj: runtest.c runtest.h wsc.h
  30.    bcc $(C_FLAGS)  runtest.c
  31.  
  32. paint.obj: paint.c paint.h wscerror.h
  33.     bcc $(C_FLAGS)  paint.c
  34.  
  35. line.obj: line.c line.h wscerror.h
  36.     bcc $(C_FLAGS)  line.c
  37.  
  38. menu.obj: menu.c menu.h wscerror.h
  39.     bcc $(C_FLAGS)  menu.c
  40.  
  41. wscerror.obj: wscerror.c wscerror.h
  42.     bcc $(C_FLAGS)  wscerror.c